getLayoutInflater

Returns the cached LayoutInflater used to inflate Views of this Fragment. If onGetLayoutInflater has not been called onGetLayoutInflater will be called with a null argument and that value will be cached.

The cached LayoutInflater will be replaced immediately prior to onCreateView and cleared immediately after onDetach.

Return

The LayoutInflater used to inflate Views of this Fragment.


Deprecated

Override onGetLayoutInflater or call getLayoutInflater instead of this method.

Override onGetLayoutInflater when you need to change the LayoutInflater or call getLayoutInflater when you want to retrieve the current LayoutInflater.